home *** CD-ROM | disk | FTP | other *** search
- ADJUSTR(3I) Last changed: 2-5-98
-
-
- NNAAMMEE
- AADDJJUUSSTTRR - Adjusts a character string to the right
-
- SSYYNNOOPPSSIISS
- AADDJJUUSSTTRR (([SSTTRRIINNGG==]_s_t_r_i_n_g))
-
- IIMMPPLLEEMMEENNTTAATTIIOONN
- UNICOS, UNICOS/mk, and IRIX systems
-
- SSTTAANNDDAARRDDSS
- Fortran 90
-
- DDEESSCCRRIIPPTTIIOONN
- The AADDJJUUSSTTRR intrinsic function adjusts a character string to the
- right, removes trailing blanks, and inserts leading blanks. It
- accepts the following argument:
-
- _s_t_r_i_n_g Must be of type character
-
- AADDJJUUSSTTRR is an elemental function. The name of this intrinsic cannot
- be passed as an argument.
-
- RREETTUURRNN VVAALLUUEESS
- The result is type character with the same length as _s_t_r_i_n_g.
-
- The value of the result is the same as _s_t_r_i_n_g except that any trailing
- blanks have been deleted and the same number of leading blanks have
- been inserted.
-
- EEXXAAMMPPLLEESS
- In the following examples, a carat (^^) indicates a blank.
-
- Example 1:
-
- VAR = ADJUSTR( 'WORD^^' )
- PRINT *,"VAR='", VAR,"'"
- This code segment returns the following output:
-
- VAR='^^WORD'
-
- Example 2:
-
- CHARACTER*29 STRING
- STRING = '^^^TEST STRING FOR ADJUSTR^^^'
- WRITE(6,1) '>', STRING,'<'
- WRITE(6,1) '>', ADJUSTR(STRING), '<'
- 1 FORMAT(3A)
- END
-
- This code returns the following output:
-
- >^^^TEST STRING FOR ADJUSTR^^^<
- >^^^^^^TEST STRING FOR ADJUSTR<
-
- SSEEEE AALLSSOO
- _I_n_t_r_i_n_s_i_c _P_r_o_c_e_d_u_r_e_s _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l, publication SR-2138, for the
- printed version of this man page.
-